56f6b373e628c71c2c1df9587f241cd1638fba05,ui-designer/impl/com/intellij/uiDesigner/designSurface/InsertComponentProcessor.java,InsertComponentProcessor,setLastLocation,#DropLocation#,68
Before Change
public void setLastLocation(final DropLocation location) {
myLastLocation = location;
if (location.canDrop(getComponentToInsert())) {
location.placeFeedback(myEditor.getActiveDecorationLayer(), getComponentToInsert());
}
}
After Change
}
public void setLastLocation(final DropLocation location) {
if (location.canDrop(getComponentToInsert())) {
myLastLocation = location;
}
else {